home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
COMPNENT
/
SAWIN95
/
SAWIN95.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-11-02
|
414b
|
21 lines
unit SAWin95;
interface
uses Classes, DsgnIntf, SysUtils,
AnimCtl, ChkList, ChkStrEd,
SysHot, TrayIcon;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Win95', [TAnimation, TCheckListBox, TSysHotKey, TTrayIcon]);
RegisterPropertyEditor(TypeInfo(TStrings), TCheckListBox, 'Items', TCheckStringListProperty);
end;
end.